home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue70 / Clinic / COMSolution1 / ComServer2.dpr < prev    next >
Encoding:
Text File  |  2001-04-05  |  288 b   |  20 lines

  1. library ComServer2;
  2.  
  3. uses
  4.   ComServ,
  5.   ComServer2_TLB in 'ComServer2_TLB.pas',
  6.   ComClass2Impl in 'ComClass2Impl.pas' {ComClass2: CoClass};
  7.  
  8. exports
  9.   DllGetClassObject,
  10.   DllCanUnloadNow,
  11.   DllRegisterServer,
  12.   DllUnregisterServer;
  13.  
  14. {$R *.TLB}
  15.  
  16. {$R *.RES}
  17.  
  18. begin
  19. end.
  20.